home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Intuition / Mouse_Keyboard / smakefile < prev   
Encoding:
Makefile  |  1996-03-20  |  259 b   |  16 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: custompointer mousetest rawkey
  4.  
  5. custompointer: custompointer.c
  6.     sc link $(CFLAGS) $@
  7.  
  8. mousetest: mousetest.c
  9.     sc link $(CFLAGS) $@
  10.  
  11. rawkey: rawkey.c
  12.     sc link $(CFLAGS) $@
  13.  
  14. clean:
  15.     -delete \#?.(o|lnk)
  16.